home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 August / macformat-027.iso / mac / Shareware City / Developers / Oberon⁄F / System / Docu / Out (.txt) < prev    next >
Encoding:
Oberon Document  |  1994-06-07  |  2.3 KB  |  51 lines  |  [oODC/obnF]

  1. Documents.StdDocumentDesc
  2. Documents.DocumentDesc
  3. Containers.ViewDesc
  4. Views.ViewDesc
  5. Stores.StoreDesc
  6. Documents.ModelDesc
  7. Containers.ModelDesc
  8. Models.ModelDesc
  9. Stores.ElemDesc
  10. TextViews.StdViewDesc
  11. TextViews.ViewDesc
  12. TextModels.StdModelDesc
  13. TextModels.ModelDesc
  14. TextModels.AttributesDesc
  15. Geneva
  16. TextRulers.StdRulerDesc
  17. TextRulers.RulerDesc
  18. TextRulers.StdStyleDesc
  19. TextRulers.StyleDesc
  20. TextRulers.AttributesDesc
  21. Geneva
  22. Geneva
  23. 8.3 Out
  24. DEFINITION Out;
  25.     PROCEDURE Open;
  26.     PROCEDURE Char (ch: CHAR);
  27.     PROCEDURE Ln;
  28.     PROCEDURE Int (VAR i, n: LONGINT);
  29.     PROCEDURE Real (x: REAL; n: INTEGER);
  30.     PROCEDURE String (s: ARRAY OF CHAR);
  31. END Out.
  32. This module is provided for compatibility with the book "Programming in Oberon" (-> "Bibliography"). It is useful when learning the language. It is not recommended for use in production programs.
  33. PROCEDURE Open
  34. Brings open log window to the top. If no log window is open, a new one is opened.
  35. PROCEDURE Char (ch: CHAR)
  36. Writes a character into the log.
  37. PROCEDURE Ln
  38. Writes a carriage return into the log.
  39. PROCEDURE Int (i, n: LONGINT)
  40. Writes an integer number into the log, with n digits. If n is too small (e.g. 0) to represent the number correctly, the necessary minimal number of digits is used.
  41. PROCEDURE Real (x: REAL; n: INTEGER)
  42. Writes a real number into the log, with n digits. If n is too small (e.g. 0) to represent the number correctly, the necessary minimal number of digits is used.
  43. PROCEDURE String (s: ARRAY OF CHAR)
  44. Writes a string into the log.
  45. TextControllers.StdCtrlDesc
  46. TextControllers.ControllerDesc
  47. Containers.ControllerDesc
  48. Controllers.ControllerDesc
  49. Geneva
  50. Documents.ControllerDesc
  51.